@charset "UTF-8";

html {
	position: relative;
	height: 100%;
}

body{
	position: relative;
	margin: 0;
	padding: 0;
	height: 100%;
	background-image: url('https://bntheater.pw/nexxuscraft/resources/images/background.jpg');
	background-size: 110% 120%;
	font-family: 'Electrolize', 'Segoe UI', Helvetica, Arial, 'Trebuchet MS', sans-serif;
	font-size: 18px;
	text-align: center;
}

#content{
    position: relative;
    top: 100px;
    width: 1000px;
    margin: 0 auto;        /* Centers horizontally */
    min-height: 700px;
    color: #FFFFFF;
    text-align: center;     /* Ensures child text is centered */
}



#site_content, #rules_content{
	padding: 50px;
	font-size: 16px;
	color: #DEDEDE;
}
a {
    text-decoration: none;
    color: #7ad7ff;                /* soft neon blue */
    font-weight: bold;
    transition: 0.2s ease-in-out;
}

a:hover {
    color: #c5f3ff;                /* brighter on hover */
    text-shadow: 0px 0px 8px #9de6ff;
}

h1, h2 {
    color: #ffffff;
    text-shadow: 0px 0px 10px rgba(255,255,255,0.4);
}

header{
	padding-bottom: 0px;
	position: absolute;
	top: -100px; 
	left: -150px; 
	z-index: 30;
	background-color: #000000;
}

nav{
	background-color: #111122;
	border-width: 0px 2px 2px 2px;
	border-color: #CCCCCC;
	border-style: solid;
	border-radius: 20px;
}

nav a{
	display: inline-block;
	padding: 10px 20px 15px 20px;
	color: #FFFFFF;
	font-weight: bold;
}

nav a.current_menu{
	background-color: rgba(200, 200, 200, 0.4);
}

nav a:first-child{
	border-top-left-radius: 20px;
	-webkit-border-top-left-radius: 20px;
	-moz-border-radius-topleft: 20px;
	border-bottom-left-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius-bottomleft: 20px;
}